home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
273_01
/
strip.cc
< prev
next >
Wrap
Text File
|
1987-09-26
|
284b
|
17 lines
strip(char *str, char c)
/* This will string all occurances of char c out of string pointed to by *str */
{
char *newstr;
newstr = str;
while (*str) {
if (*str != c) {
*newstr=*str;
newstr++;
str++;
}
else str++;
}
*newstr = '\0';
}